home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / emacssrc.arc / EPATH.H < prev    next >
Encoding:
Text File  |  1986-12-08  |  852 b   |  73 lines

  1. /*    PATH:    This file contains certain info needed to locate the
  2.         MicroEMACS files on a system dependant basis.
  3.  
  4.                                     */
  5.  
  6. /*    possible names and paths of help files under different OSs    */
  7.  
  8. char *pathname[] =
  9.  
  10. #if    AMIGA
  11. {
  12.     ".emacsrc",
  13.     "emacs.hlp",
  14.     "",
  15.     ":c/",
  16.     ":t/"
  17. };
  18. #endif
  19.  
  20. #if    ST520
  21. {
  22.     "emacs.rc",
  23.     "emacs.hlp",
  24.     "\\",
  25.     "\\bin\\",
  26.     "\\util\\",
  27.     ""
  28. };
  29. #endif
  30.  
  31. #if    FINDER
  32. {
  33.     "emacs.rc",
  34.     "emacs.hlp",
  35.     "/bin",
  36.     "/sys/public",
  37.     ""
  38. };
  39. #endif
  40.  
  41. #if    MSDOS
  42. {
  43.     "emacs.rc",
  44.     "emacs.hlp",
  45.     "\\sys\\public\\",
  46.     "\\usr\\bin\\",
  47.     "\\bin\\",
  48.     "\\",
  49.     ""
  50. };
  51. #endif
  52.  
  53. #if    V7 | BSD | USG
  54. {
  55.     ".emacsrc",
  56.     "emacs.hlp",
  57.     "/usr/local/",
  58.     "/usr/lib/",
  59.     ""
  60. };
  61. #endif
  62.  
  63. #if    VMS
  64. {
  65.     "emacs.rc",
  66.     "emacs.hlp",
  67.     "",
  68.     "sys$sysdevice:[vmstools]"
  69. };
  70. #endif
  71.  
  72. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  73.